92. Araxis Merge File Comparison Report

Produced by Araxis Merge on 2022-11-18 03:12:08 +0000. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.

92.1 Files compared

#LocationFileLast Modified
1Porto Theme/app/design/frontend/Smartwave/porto/Magento_Sales/emailshipment_update.html2016-06-21 09:41:00 +0000
2Theme Files/Magento 2.x/Porto Theme/app/design/frontend/Smartwave/porto/Magento_Sales/emailshipment_update.html2022-11-02 03:47:33 +0000

92.2 Comparison summary

DescriptionBetween
Files 1 and 2
Text BlocksLines
Unchanged1080
Changed727
Inserted11
Removed11

92.3 Comparison options

WhitespaceConsecutive whitespace is treated as a single space
Character caseDifferences in character case are significant
Line endingsDifferences in line endings (CR and LF characters) are ignored
CR/LF charactersNot shown in the comparison detail
Active line-pairing rules

92.4 Active regular expressions

No regular expressions were active.

92.5 Comparison detail

1 <!-- 1 <!--
2 /** 2 /**
3  * Copyright © 2016 Magento
. All rights reserved.
 3  * Copyright © 
Magento, Inc. All rights reserved.
4  * See COPYING.txt for license details. 4  * See COPYING.txt for license details.
5  */ 5  */
6 --> 6 -->
7 <!--@subject {{trans "Update to your %store_name shipment" store_name=$store.getFrontendName()}} @--> 7 <!--@subject {{trans "Update to your %store_name shipment" store_name=$store.frontend_name}} @-->
8 <!--@vars { 8 <!--@vars {
9 "var this.getUrl($store, 'customer/account/'
)":"Customer Account URL",
 9 "var this.getUrl($store,
'customer/account/',[_nosid:1])":"Customer Account URL",
10 "var order.getCustomerName()":"Customer Name", 10 "var order_data.customer_name":"Customer Name",
11 "var comment
":"Order Comment",
 11 "var comment|escape|nl2br":"Order Comment",
12 "var order.increment_id":"Order Id", 12 "var order.increment_id":"Order Id",
13 "var order.getStatusLabel()":"Order Status", 13 "var order_data.frontend_status_label":"Order Status",
14 "var shipment.increment_id":"Shipment Id"
 14 "var shipment.increment_id":"Shipment Id",
    15 "var store.frontend_name":"Store Frontend Name",
    16 "var store_phone":"Store Phone",
    17 "var store_email":"Store Email",
    18 "var store_hours":"Store Hours"
15 } @--> 19 } @-->
16 {{template config_path="design/email/header_template"}} 20 {{template config_path="design/email/header_template"}}
17  21 
18 <table> 22 <table>
19     <tr class="email-intro"> 23     <tr class="email-intro">
20         <td> 24         <td>
21             <p class="greeting">{{trans "%name," name=$order.getCustomerName()}}</p> 25             <p class="greeting">{{trans "%name," name=$order_data.customer_name}}</p>
22             <p> 26             <p>
23                 {{trans 27                 {{trans
24                     "Your order #%increment_id has been updated with a status of <strong>%order_status</strong>." 28                     "Your order #%increment_id has been updated with a status of <strong>%order_status</strong>."
25  29 
26                     increment_id=$order.increment_id 30                     increment_id=$order.increment_id
27                     order_status=$order.getStatusLabel() 31                     order_status=$order_data.frontend_status_label
28                 |raw}} 32                 |raw}}
29                 {{trans 'You can check the status of your order by <a href="%account_url">logging into your account</a>.' account_url=$this.getUrl($store,'customer/account/',[_nosid:1]) |raw}}    
30             </p> 33             </p>
    34             <p>{{trans 'You can check the status of your order by <a href="%account_url">logging into your account</a>.' account_url=$this.getUrl($store,'customer/account/',[_nosid:1]) |raw}}</p>
31             <p> 35             <p>
32                 {{trans 'If you have questions about your order, you can email us at <a href="mailto:%store_email">%store_email</a>.' store_email=$store_email |raw}}
 36                 {{trans 'If you have questions about your order, you can email us at <a href="mailto:%store_email">%store_email</a>
' store_email=$store_email |raw}}{{depend store_phone}} {{trans 'or call us at <a href="tel:%store_phone">%store_phone</a>' store_phone=$store_phone |raw}}{{/depend}}.
    37                 {{depend store_hours}}
    38                     {{trans 'Our hours are <span class="no-link">%store_hours</span>.' store_hours=$store_hours |raw}}
    39                 {{/depend}}
33             </p> 40             </p>
34         </td> 41         </td>
35     </tr> 42     </tr>
36     <tr class="email-information"> 43     <tr class="email-information">
37         <td> 44         <td>
38             {{depend comment}} 45             {{depend comment}}
39             <table class="message-info"> 46             <table class="message-info">
40                 <tr> 47                 <tr>
41                     <td> 48                     <td>
42                         {{var comment|escape|nl2br}} 49                         {{var comment|escape|nl2br}}
43                     </td> 50                     </td>
44                 </tr> 51                 </tr>
45             </table> 52             </table>
46             {{/depend}} 53             {{/depend}}
47         </td> 54         </td>
48     </tr> 55     </tr>
49 </table> 56 </table>
50  57 
51 {{template config_path="design/email/footer_template"}} 58 {{template config_path="design/email/footer_template"}}